/** * @license * Copyright 2019 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { OtCommand } from "apicurio-data-models"; import { VersionedAck } from "../../../../models/ack.model"; import { ApiEditorUser } from "../../../../models/editor-user.model"; export declare abstract class AbstractApiEditorComponent { abstract executeCommand(command: OtCommand): void; abstract undoCommand(command: OtCommand | number | string): void; abstract redoCommand(command: OtCommand | number): void; abstract finalizeCommand(ack: VersionedAck): void; abstract updateCollaboratorSelection(user: ApiEditorUser, selection: string): void; abstract select(path: string, highlight: boolean): void; }